home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Windoid / Sources / Defines.k < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.4 KB  |  39 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 1 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef DEFINES_K
  7. #define DEFINES_K
  8.  
  9. #ifndef FWMENU_K
  10. #include "FWMenu.k"
  11. #endif
  12.  
  13. // Uncomment the following three lines, and define them appropriately!!
  14. // If your part can be a container for other parts, define FW_SUPPORTS_EMBEDDING
  15. // to be 1.  Otherwise define it to be 0.
  16. // If your part defines any ODExtensions, define FW_SUPPORTS_EXTENSIONS to be
  17. // 1 to enable the extensions manager.  Otherwise, define it to be 0.
  18. // If your part is scriptable, define FW_SUPPORTS_SCRIPTING to be 1. Otherwise,
  19. // define it to be zero.  Note that if your part is scriptable is must support
  20. // extensions, so FW_SUPPORTS_EXTENSIONS must be defined to be 1.
  21.  
  22. #define FW_SUPPORTS_EMBEDDING 0
  23. #define FW_SUPPORTS_EXTENSIONS 0
  24. #define FW_SUPPORTS_SCRIPTING 0
  25.  
  26. //===================================================
  27. #define cShowHideCommand        FW_kFirstUserCommandID
  28.  
  29. //===================================================
  30. #define kMenuBarID         1024
  31. #define kPartIconID     128
  32. #define kAbout            1024
  33. #define kPartInfoID        1024
  34.  
  35. #define kPalettePictID     2001
  36. //===================================================
  37. #endif
  38.  
  39.